home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / web_dev / files / mwjpp516.exe / %MAINDIR% / Tools / Misc / insert doubleParenth.script < prev    next >
Encoding:
Text File  |  2001-06-19  |  383 b   |  16 lines

  1. !!Script
  2. // Script by Will Hains
  3.  
  4. // Wrap selection with ( ... ) - also works for an insertion caret
  5.  
  6. var editor = getActiveEditor();
  7. if (editor)
  8. {
  9.   var selection = editor.getSelection();
  10.   editor.insert(selection.endLineIndex, selection.endCharIndex, ")");
  11.   editor.insert(selection.startLineIndex, selection.startCharIndex, "(");
  12.   editor.setActive();
  13. }
  14.  
  15. !!/Script
  16.